Carbon


DataBrowserItemDragRgnProcPtr

Header: ControlDefinitions.h Carbon status: Under Evaluation

typedef void(* DataBrowserItemDragRgnProcPtr) (
    ControlRef browser, 
    DataBrowserItemID itemID, 
    DataBrowserPropertyID property, 
    const Rect *theRect, 
    RgnHandle dragRgn
);

You would declare your function like this if you were to name it MyDataBrowserItemDragRgnCallback:

void MyDataBrowserItemDragRgnCallback (
    ControlRef browser, 
    DataBrowserItemID itemID, 
    DataBrowserPropertyID property, 
    const Rect *theRect, 
    RgnHandle dragRgn
);
browser
itemID
property
theRect
dragRgn

AVAILABILITY

Under evaluation for Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 5/8/2000)